home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / bash_completion.d / sbcl < prev    next >
Text File  |  2009-04-02  |  700b  |  26 lines

  1. # -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
  2. # ex: ts=8 sw=8 noet filetype=sh
  3. #
  4. # bash programmable completion for various Common Lisp implementations by
  5. # Nikodemus Siivola <nikodemus@random-state.net>
  6.  
  7. _sbcl()
  8. {
  9.     local cur
  10.  
  11.     COMPREPLY=()
  12.     cur=`_get_cword`
  13.  
  14.     # completing an option (may or may not be separated by a space)
  15.     if [[ "$cur" == -* ]]; then
  16.     COMPREPLY=( $( compgen -W '--core --noinform --help --version \
  17.                      --sysinit --userinit --eval --noprint --disable-debugger \
  18.                      --end-runtime-options --end-toplevel-options ' -- $cur ) )
  19.     else
  20.     _filedir
  21.     fi
  22.  
  23.     return 0
  24. }
  25. complete -F _sbcl $default sbcl sbcl-mt
  26.